home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-03 | 1.1 KB | 73 lines |
- # Copyright 1992-3 by Jon Dart. All Rights Reserved.
- # Makefile for building TESTSRC program, using Borland C++ version 3.1
-
- TARGET=dos
-
- !include "make.cfg"
-
- all: testsrc.exe
-
- # *List Macros*
-
-
- EXE_dependencies = \
- testsrc.obj \
- board.obj \
- attacks.obj \
- move.obj \
- emove.obj \
- square.obj \
- bhash.obj \
- bearing.obj \
- movegen.obj \
- sortmove.obj \
- search.obj \
- moveord.obj \
- scoring.obj \
- pinfo.obj \
- rmove.obj \
- options.obj \
- movearr.obj \
- piece.obj \
- attacke.obj \
- atckentr.obj \
- material.obj \
- pool.obj \
- notation.obj \
- timectrl.obj
-
- # *Explicit Rules*
- testsrc.exe: $(EXE_dependencies)
- $(LINK) $(LFLAGS) @&&|
- c0l.obj+
- testsrc.obj+
- board.obj+
- attacks.obj+
- move.obj+
- emove.obj+
- square.obj+
- piece.obj+
- bhash.obj+
- bearing.obj+
- movegen.obj+
- sortmove.obj+
- moveord.obj+
- scoring.obj+
- pinfo.obj+
- search.obj+
- rmove.obj+
- options.obj+
- movearr.obj+
- attacke.obj+
- atckentr.obj+
- material.obj+
- pool.obj+
- notation.obj+
- timectrl.obj
- testsrc
- testsrc.map
- emu.lib+
- cl.lib+
- mathl.lib
- |
-